SftTree/OCX 7.0

SftTree.RowColPicture Property

Softel vdm, Inc.

Defines the graphic displayed in the row/column header.

Deprecated - Provided for compatibility with earlier versions only - Use RowColumnHeader.Image.Picture instead

Syntax       

Get

VB.NET

refPictureObj = object.RowColPicture  As System.Drawing.ImageLanguage-specific information

VB

Set refPictureObj = object.RowColPicture  As IPictureDisp

C#.NET

System.Drawing.ImageLanguage-specific information refPictureObj = object.RowColPicture;

VC++

IPictureDisp* refPictureObj = object->GetRowColPicture();

C

HRESULT object->get_RowColPicture(IPictureDisp** refPictureObj);

Delphi

refPictureObj := object.RowColPicture  : TPicture;

Put

VB.NET

object.let_RowColPicture(ByVal refPictureObj As System.Drawing.ImageLanguage-specific information)

VB

object.RowColPicture = refPictureObj  As IPictureDisp

C#.NET

void object.let_RowColPicture(System.Drawing.ImageLanguage-specific information refPictureObj);

VC++

void object->PutRowColPicture(IPictureDisp* refPictureObj);

C

HRESULT object->put_RowColPicture(IPictureDisp* refPictureObj);

Delphi

procedure object._Set_RowColPicture(refPictureObj : TPicture);

PutRef

VB.NET

object.RowColPicture = refPictureObj  As System.Drawing.ImageLanguage-specific information

VB

Set object.RowColPicture = refPictureObj  As IPictureDisp

C#.NET

System.Drawing.ImageLanguage-specific information object.RowColPicture = refPictureObj;

VC++

void object->PutRefRowColPicture(IPictureDisp* refPictureObj);

C

HRESULT object->putref_RowColPicture(IPictureDisp* refPictureObj);

Delphi

object.RowColPicture := refPictureObj  : TPicture;

object

A SftTree object.

refPictureObj

Defines the graphic displayed in the row/column header.  The refPictureObj object must represent a bitmap, icon or Windows metafile.  If a bitmap is used, the top, left pixel of each graphic must contain the background color.  This color will be replaced by the actual background when the graphic is displayed.  For information about picture properties, please visit the applicable section "Using SftTree/OCX with ...".

Comments

Deprecated - Provided for compatibility with earlier versions only - Use RowColumnHeader.Image.Picture instead

The RowColPicture property defines the graphic displayed in the row/column header.

The RowColPicture and RowColPictureH properties are synonyms, but accept different value types (Picture object reference or Windows bitmap handle).

The dimensions of the graphics are used to calculate the minimum dimension for the row/column, row headers and column headers, so graphics used as RowColPicture property are never clipped vertically.

The RowColPicture property can be set to the value Nothing (NULL), which removes the graphic from the row/column header.

The position of the row/column header graphic is determined by the RowColumnHeader.ImageHAlign, RowColumnHeader.ImageVAlign, RowColumnHeader.TextHAlign and RowColumnHeader.TextVAlign properties.

Using PutRef (see Syntax above) the control will use the reference to the Picture object.  If the Picture object is later changed, this will also affect the image used by the control.  Using Put instead causes the control to create a copy of the Picture object.  If the Picture object is later changed, this will not affect the image used by the control as it uses a copy of the object.  Because of the additional overhead and the increased resource use of Put, PutRef is the preferred method.

See Also  SftTree Object | Object Hierarchy


Feedback / comments / error reports for this topic
© 2015 - Softel vdm, Inc. - www.softelvdm.com